报错信息
1 | react.development.js:12 Uncaught ReferenceError: process is not defined |
process对象是nodejs的环境变量,浏览器端是没有的。
解决办法,在打包后的bundle.js里var一个process对象,例如
1 | var process = { |
但是每次重新构建bundle.js后,又要重新添加,所以可以在rollup.config.js里配置,
例如:
1 |
|
或者rollup.config.js配置
1 | import replace from "@rollup/plugin-replace"; |